home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / glass / glass.lha / GLASS / widgets / Command.h < prev    next >
C/C++ Source or Header  |  1991-02-01  |  3KB  |  93 lines

  1.  /*
  2. * $XConsortium: Command.h,v 1.26 89/10/03 14:51:22 kit Exp $
  3. */
  4.  
  5.  
  6. /***********************************************************
  7. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
  8. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  9.  
  10.                         All Rights Reserved
  11.  
  12. Permission to use, copy, modify, and distribute this software and its 
  13. documentation for any purpose and without fee is hereby granted, 
  14. provided that the above copyright notice appear in all copies and that
  15. both that copyright notice and this permission notice appear in 
  16. supporting documentation, and that the names of Digital or MIT not be
  17. used in advertising or publicity pertaining to distribution of the
  18. software without specific, written prior permission.  
  19.  
  20. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  21. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  22. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  23. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  24. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  25. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  26. SOFTWARE.
  27.  
  28. ******************************************************************/
  29.  
  30. #ifndef _XawCommand_h
  31. #define _XawCommand_h
  32.  
  33. /***********************************************************************
  34.  *
  35.  * Command Widget
  36.  * Adapted 9/1/90
  37.  *
  38.  ***********************************************************************/
  39.  
  40. #include "Label.h"
  41.  
  42. /* Resources:
  43.  
  44.  Name             Class        RepType        Default Value
  45.  ----             -----        -------        -------------
  46.  background         Background        Pixel        XtDefaultBackground
  47.  bitmap             Pixmap        Pixmap        None
  48.  border             BorderColor    Pixel        XtDefaultForeground
  49.  borderWidth         BorderWidth    Dimension    1
  50.  callback         Callback        Pointer        NULL
  51.  cursor             Cursor        Cursor        None
  52.  destroyCallback     Callback        Pointer        NULL
  53.  font             Font        XFontStruct*    XtDefaultFont
  54.  foreground         Foreground        Pixel        XtDefaultForeground
  55.  height             Height        Dimension    text height
  56.  highlightThickness  Thickness        Dimension    2
  57.  insensitiveBorder   Insensitive    Pixmap        Gray
  58.  internalHeight         Height        Dimension    2
  59.  internalWidth         Width        Dimension    4
  60.  justify         Justify        XtJustify    XtJustifyCenter
  61.  label             Label        String        NULL
  62.  imageText           Mode               Boolean         False
  63.  mappedWhenManaged   MappedWhenManaged    Boolean        True
  64.  resize             Resize        Boolean        True
  65.  sensitive         Sensitive        Boolean        True
  66.  width             Width        Dimension    text width
  67.  x             Position        Position    0
  68.  y             Position        Position    0
  69.  
  70. */
  71.  
  72. #define XtNhighlightThickness "highlightThickness"
  73.  
  74. #define XtNshapeStyle "shapeStyle"
  75. #define XtCShapeStyle "ShapeStyle"
  76. #define XtRShapeStyle "ShapeStyle"
  77. #define XtNcornerRoundPercent "cornerRoundPercent"
  78. #define XtCCornerRoundPercent "CornerRoundPercent"
  79.  
  80. #define XawShapeRectangle XmuShapeRectangle
  81. #define XawShapeOval XmuShapeOval
  82. #define XawShapeEllipse XmuShapeEllipse
  83. #define XawShapeRoundedRectangle XmuShapeRoundedRectangle
  84.  
  85. extern WidgetClass     commandWidgetClass;
  86.  
  87. typedef struct _CommandClassRec   *CommandWidgetClass;
  88. typedef struct _CommandRec        *CommandWidget;
  89.  
  90.  
  91. #endif /* _XawCommand_h */
  92. /* DON'T ADD STUFF AFTER THIS */
  93.